projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
723718f
)
(display_line): Indicate empty lines in active
author
Gerd Moellmann
<gerd@gnu.org>
Thu, 18 Oct 2001 08:47:12 +0000
(08:47 +0000)
committer
Gerd Moellmann
<gerd@gnu.org>
Thu, 18 Oct 2001 08:47:12 +0000
(08:47 +0000)
mini-window.
src/ChangeLog
patch
|
blob
|
history
src/xdisp.c
patch
|
blob
|
history
diff --git
a/src/ChangeLog
b/src/ChangeLog
index d5fc0aca0b7f19f8a813773de93b15724213e796..3afdbfcf6c42bee62eced22739f9791b4a7c1371 100644
(file)
--- a/
src/ChangeLog
+++ b/
src/ChangeLog
@@
-1,3
+1,8
@@
+2001-10-18 Gerd Moellmann <gerd@gnu.org>
+
+ * xdisp.c (display_line): Indicate empty lines in active
+ mini-window.
+
2001-10-17 Andrew Innes <andrewi@gnu.org>
* fontset.h (struct font_info) [WINDOWSNT]: Add codepage field.
diff --git
a/src/xdisp.c
b/src/xdisp.c
index 69fd0c73c6c4bd9b329420e2932021d31f537e50..986b4a333ce785bcb0271736469ba5000ed87d6c 100644
(file)
--- a/
src/xdisp.c
+++ b/
src/xdisp.c
@@
-12797,7
+12797,8
@@
display_line (it)
row->displays_text_p = 0;
if (!NILP (XBUFFER (it->w->buffer)->indicate_empty_lines)
- && !MINI_WINDOW_P (it->w))
+ && (!MINI_WINDOW_P (it->w)
+ || (minibuf_level && EQ (it->window, minibuf_window))))
row->indicate_empty_line_p = 1;
}